home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
libs
/
tool6v12
/
demofil.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-07-01
|
426b
|
18 lines
Program DemoFiles;
{ Purpose....... Demonstrates the use of the following units: Files
Comments...... None
Author........ Thayne Breetzke
Date.......... 5 April 1994 }
Uses
Files;
Begin
If Exists('Sample.txt') then
Writeln('Sample.txt exists in the current directory')
else
Writeln('Can''t find Sample.txt in the current directory')
end.